home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / clang / nn.zip / M-SYMMET.H < prev    next >
C/C++ Source or Header  |  1989-07-11  |  668b  |  31 lines

  1. /************** Machine (and compiler) dependent definitions. **************
  2.  *
  3.  *    This file is for the Symmetry.
  4.  *    Use with s-dynix3-0.h.
  5.  */
  6.  
  7.  
  8.  
  9. /*      MACHINE TYPE    DEFINED TYPE        VALUE RANGE    */
  10.  
  11. typedef unsigned char    int8;        /*        0 ..     255 */
  12. typedef short        int16;        /*  -10,000 ..  10,000 */
  13. typedef long        int32;        /* -100,000 .. 100,000 */
  14. typedef unsigned long    uint32;        /*       0 ..  2^31-1 */
  15.  
  16. /*
  17.  * The Symmetry C compiler lacks vprintf/vsprintf and strcspn
  18.  */
  19.  
  20. #define NO_VARARGS
  21. #define STRCSPN
  22.  
  23. /*
  24.  *    Not in network byte order on the 386
  25.  */
  26.  
  27. #undef NETWORK_BYTE_ORDER    /* */
  28. #if defined(NNTP) || defined(NETWORK_DATABASE)
  29. #include <netinet/in.h>
  30. #endif
  31.